home *** CD-ROM | disk | FTP | other *** search
/ Clickx 35 / Clickx 35.iso / assets / software / EC Architect / Acrobat / plug_ins / AcroForm / JavaScripts / Afstrnld.js < prev   
Encoding:
Text File  |  2007-01-01  |  2.7 KB  |  83 lines

  1. /*
  2.     ==========================================================================
  3.     Module: AFStrNLD.js
  4.     ==========================================================================
  5.     JavaScript language dependent strings.
  6.     ==========================================================================
  7.     The Software, including this file, is subject to the End User License
  8.     Agreement.
  9.     Copyright (c) 1998, Adobe Systems Incorporated, All Rights Reserved.
  10.     ==========================================================================
  11. */
  12.  
  13. /* ==== Strings ==== */
  14. /* All of our user strings are defined here. Use Shift-JIS encoding for
  15. ** double byte platforms. These strings need to be translated for each language. */
  16. if (app.language == "NLD") {
  17.     IDS_LANGUAGE         = "NLD";
  18.     IDS_GREATER_THAN    = "Ongeldige waarde: moet groter zijn dan of gelijk aan %s.";
  19.     IDS_GT_AND_LT        = "Ongeldige waarde: moet groter zijn dan of gelijk aan %s en minder dan of gelijk aan %s.";
  20.     IDS_LESS_THAN        = "Ongeldige waarde: moet minder zijn dan of gelijk aan %s.";
  21.     IDS_INVALID_MONTH    = "** Ongeldig **";
  22.     IDS_INVALID_DATE    = "Ongeldige datum/tijd: Controleer of de datum/tijd bestaat en of de 4 cijfers van het jaar zijn ingevuld."
  23.     IDS_INVALID_VALUE    = "De ingevoerde waarde komt niet overeen met de veldindeling";
  24.     IDS_AM = "am";
  25.     IDS_PM = "pm";
  26.  
  27.     /* This string contains month info in the following format:
  28.     ** month name or abbreviation (left bracket) month number (right bracket)
  29.     ** Note that the first string with the given number will be returned by
  30.     ** AFGetMonthString (look in AForm.js)
  31.     ** Also note that the months and abbreviations should be in order of most
  32.     ** to least definitive in case an abbreviation matches part of another
  33.     ** month or abbreviation */
  34.     IDS_MONTH_INFO    =    "januari[1]" +
  35.                         "februari[2]" +
  36.                         "maart[3]" +
  37.                         "april[4]" +
  38.                         "mei[5]" +
  39.                         "juni[6]" +
  40.                         "juli[7]" +
  41.                         "augustus[8]" +
  42.                         "september[9]" +
  43.                         "oktober[10]" +
  44.                         "november[11]" +
  45.                         "december[12]" +
  46.                         "sept[9]" +
  47.                         "jan[1]" +
  48.                         "feb[2]" +
  49.                         "mrt[3]" +
  50.                         "apr[4]" +
  51.                         "jun[6]" +
  52.                         "jul[7]" +
  53.                         "aug[8]" +
  54.                         "sep[9]" +
  55.                         "okt[10]" +
  56.                         "nov[11]" +
  57.                         "dec[12]" +
  58.                         "January[1]" +
  59.                         "February[2]" +
  60.                         "March[3]" +
  61.                         "April[4]" +
  62.                         "May[5]" +
  63.                         "June[6]" +
  64.                         "July[7]" +
  65.                         "August[8]" +
  66.                         "September[9]" +
  67.                         "October[10]" +
  68.                         "November[11]" +
  69.                         "December[12]" +
  70.                         "Sept[9]" +
  71.                         "Jan[1]" +
  72.                         "Feb[2]" +
  73.                         "Mar[3]" +
  74.                         "Apr[4]" +
  75.                         "Jun[6]" +
  76.                         "Jul[7]" +
  77.                         "Aug[8]" +
  78.                         "Sep[9]" +
  79.                         "Oct[10]" +
  80.                         "Nov[11]" +
  81.                         "Dec[12]";
  82. }
  83.